找传奇、传世资源到传世资源站!

c#协议开发UDP群聊带私聊案例

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】c#协议开发UDP群聊带私聊案例
最近做音频通讯闲来做的UDP例子,特地分享

【相关图片】

from clipboard

【源码结构】
文件清单
└── UDP群聊
    ├── TestUDPGroupServer
    │   ├── TestUDPGroupClient
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── TestUDPGroupClient.exe
    │   │   │       ├── TestUDPGroupClient.pdb
    │   │   │       └── TestUDPGroupClient.vshost.exe
    │   │   ├── Form1.cs
    │   │   ├── Form1.Designer.cs
    │   │   ├── Form1.resx
    │   │   ├── obj
    │   │   │   ├── Debug
    │   │   │   │   ├── TempPE
    │   │   │   │   ├── TestUDPGroupClient.csproj.GenerateResource.Cache
    │   │   │   │   ├── TestUDPGroupClient.exe
    │   │   │   │   ├── TestUDPGroupClient.Form1.resources
    │   │   │   │   ├── TestUDPGroupClient.pdb
    │   │   │   │   └── TestUDPGroupClient.Properties.Resources.resources
    │   │   │   └── TestUDPGroupClient.csproj.FileList.txt
    │   │   ├── Program.cs
    │   │   ├── Properties
    │   │   │   ├── AssemblyInfo.cs
    │   │   │   ├── Resources.Designer.cs
    │   │   │   ├── Resources.resx
    │   │   │   ├── Settings.Designer.cs
    │   │   │   └── Settings.settings
    │   │   └── TestUDPGroupClient.csproj
    │   ├── TestUDPGroupServer
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── TestUDPGroupServer.exe
    │   │   │       ├── TestUDPGroupServer.pdb
    │   │   │       └── TestUDPGroupServer.vshost.exe
    │   │   ├── Form1.cs
    │   │   ├── Form1.Designer.cs
    │   │   ├── Form1.resx
    │   │   ├── obj
    │   │   │   ├── Debug
    │   │   │   │   ├── Refactor
    │   │   │   │   ├── TempPE
    │   │   │   │   ├── TestUDPGroupServer.csproj.GenerateResource.Cache
    │   │   │   │   ├── TestUDPGroupServer.exe
    │   │   │   │   ├── TestUDPGroupServer.Form1.resources
    │   │   │   │   ├── TestUDPGroupServer.pdb
    │   │   │   │   └── TestUDPGroupServer.Properties.Resources.resources
    │   │   │   └── TestUDPGroupServer.csproj.FileList.txt
    │   │   ├── Program.cs
    │   │   ├── Properties
    │   │   │   ├── AssemblyInfo.cs
    │   │   │   ├── Resources.Designer.cs
    │   │   │   ├── Resources.resx
    │   │   │   ├── Settings.Designer.cs
    │   │   │   └── Settings.settings
    │   │   └── TestUDPGroupServer.csproj
    │   ├── TestUDPGroupServer.sln
    │   └── TestUDPGroupServer.suo
    └── UDPServerList
        ├── UDPServerList
        │   ├── bin
        │   │   └── Debug
        │   │       ├── UDPServerList.exe
        │   │       ├── UDPServerList.pdb
        │   │       └── UDPServerList.vshost.exe
        │   ├── obj
        │   │   ├── Debug
        │   │   │   ├── Refactor
        │   │   │   ├── TempPE
        │   │   │   ├── UDPServerList.csproj.GenerateResource.Cache
        │   │   │   ├── UDPServerList.exe
        │   │   │   ├── UDPServerList.pdb
        │   │   │   ├── UDPServerList.Properties.Resources.resources
        │   │   │   └── UDPServerList.Server.resources
        │   │   └── UDPServerList.csproj.FileList.txt
        │   ├── Program.cs
        │   ├── Properties
        │   │   ├── AssemblyInfo.cs
        │   │   ├── Resources.Designer.cs
        │   │   ├── Resources.resx
        │   │   ├── Settings.Designer.cs
        │   │   └── Settings.settings
        │   ├── Server.cs
        │   ├── Server.Designer.cs
        │   ├── Server.resx
        │   └── UDPServerList.csproj
        ├── UDPServerList.sln
        ├── UDPServerList.suo
        └── UDPSingleClient2
            ├── bin
            │   └── Debug
            │       ├── UDPSingleClient2.exe
            │       ├── UDPSingleClient2.pdb
            │       └── UDPSingleClient2.vshost.exe
            ├── Client.cs
            ├── Client.Designer.cs
            ├── Client.resx
            ├── obj
            │   ├── Debug
            │   │   ├── Refactor
            │   │   ├── TempPE
            │   │   ├── UDPSingleClient2.csproj.GenerateResource.Cache
            │   │   ├── UDPSingleClient2.exe
            │   │   ├── UDPSingleClient2.Form1.resources
            │   │   ├── UDPSingleClient2.pdb
            │   │   └── UDPSingleClient2.Properties.Resources.resources
            │   └── UDPSingleClient2.csproj.FileList.txt
            ├── Program.cs
            ├── Properties
            │   ├── AssemblyInfo.cs
            │   ├── Resources.Designer.cs
            │   ├── Resources.resx
            │   ├── Settings.Designer.cs
            │   └── Settings.settings
            ├── UDPSingleClient2.csproj
            └── UDPSingleClient2.csproj.user

34 directories, 81 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复